home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Technical Documentation / Sample Code / DTS.Lib & Samples / Zippo / App.Common.h next >
Encoding:
C/C++ Source or Header  |  1992-10-22  |  1.2 KB  |  56 lines  |  [TEXT/MPS ]

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    Apple Macintosh Developer Technical Support
  4. #
  5. #    App.Common.h    -    Rez and C Include Source
  6. #
  7. #    Copyright © 1989-1992 Apple Computer, Inc.
  8. #    All rights reserved.
  9. #
  10. ------------------------------------------------------------------------------*/
  11.  
  12.  
  13. #ifndef __APPCOMMON__
  14. #define __APPCOMMON__
  15.  
  16. #include "DTS.Lib.Common.h"
  17.  
  18. #define VH_VERSION 1                /* True means to include ViewHierarchy window. */
  19.  
  20. #define kDocCreator        'DUMB'
  21. #define kDocFileType    'DUMD'
  22.  
  23. #define kMinSize    200                /* application's minimum size (in K) */
  24. #define kPrefSize    400                /* application's preferred size (in K) */
  25.  
  26. #define rWindowYPos        60            /* These are referenced only in the rez source file. */
  27. #define rWindowHeight    287
  28. #define rWindowXPos        40
  29. #define rWindowWidth    504
  30.  
  31. #define    mFile                    129
  32. #define    iNew                    1
  33. #define iOpen                    2
  34. #define    iClose                    4
  35. #define iSave                    5
  36. #define    iSaveAs                    6
  37. #define    iPageSetup                8
  38. #define    iPrint                    9
  39. #define    iQuit                    11
  40.  
  41. #define    mEdit                    130
  42. #define    iUndo                    1
  43. #define    iRedo                    2
  44. #define    iCut                    4
  45. #define    iCopy                    5
  46. #define    iPaste                    6
  47. #define    iClear                    7
  48. #define iViewHier                9
  49.  
  50.  
  51. #define rDynHelpStrings        257
  52.  
  53.  
  54. #endif __APPCOMMON__
  55.  
  56.